home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / THINKC / TCL1 / CEDITOR_ / CEDITORA.H < prev    next >
Text File  |  1990-06-04  |  535b  |  23 lines

  1. /******************************************************************************
  2.  CEditorApp.h
  3.         Interface for the EditorApp Class
  4.  
  5.  Written by Johan A. Goossens, 1990
  6.  ******************************************************************************/
  7.  
  8. #define            _H_CEditorApp
  9.  
  10. #include         <CApplication.h>
  11.  
  12. struct CEditorApp : CApplication
  13. {
  14.     void        IEditorApp(void);
  15.  
  16.     void        SetUpFileParameters(void);
  17.     void        SetUpMenus(void);
  18.     
  19.     void        CreateDocument(void);
  20.     void        OpenDocument(SFReply *macSFReply);
  21.  
  22.     void        DoCommand(long theCommand);
  23. };